779e3d85fc6e10583f2d03beeea702f6657de5ec,subprojects/platform-native/src/main/groovy/org/gradle/nativeplatform/internal/configure/NativeBinaryRules.java,NativeBinaryRules,installationDirFor,#NativeBinarySpecInternal#File#,90

Before Change


    }

    public static File installationDirFor(NativeBinarySpecInternal nativeBinary, File buildDir) {
        return nativeBinary.getNamingScheme().withOutputType("install").getOutputDirectory(buildDir);
    }

    private static String executableNameFor(NativeBinarySpecInternal nativeBinary) {

After Change


    }

    public static File installationDirFor(NativeBinarySpecInternal nativeBinary, File buildDir) {
        return nativeBinary.getNamingScheme().getOutputDirectory(buildDir, "install");
    }

    private static String executableNameFor(NativeBinarySpecInternal nativeBinary) {